
This resource address returns the configuration properties of the named alert trigger.
| URL Parameters | |
|---|---|
| format | The format of the posted data. Can be either
json or xml (default). This value overrides the Accept header if
both are present. |
Upon success, MarkLogic Server returns status code 200 (OK). The response body contains the requested data. If the trigger does not exist, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-user role, or the following
privilege: http://marklogic.com/xdmp/privileges/manage
The structure of the output returned from this REST API is as follows:
idnamedescriptioneventThis is a complex structure with the following children:
data-eventThis is a complex structure with the following children:
document-scopeThis is a complex structure with the following children:
uricollection-scopeThis is a complex structure with the following children:
uridirectory-scopeThis is a complex structure with the following children:
uridepthdocument-contentThis is a complex structure with the following children:
update-kindany-property-contentany-custom-property-contentproperty-contentThis is a complex structure with the following children:
property-nameThis is a complex structure with the following children:
namespace-urilocalnamewhendatabase-online-eventThis is a complex structure with the following children:
useruser-iduser-namemodulemodule-dbmodule-rootenabledrecursivetask-prioritypermissionsThis is a complex structure with the following children:
permissionThis is a complex structure with the following children:
role-namecapability
curl -X GET --anyauth -u admin:admin --header "Content-Type:application/json" \
http://localhost:8002/manage/v2/databases/myTriggers/triggers/my-trigger/properties
==> Returns the properties of the "my-trigger" trigger for the myTriggers
database.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.